Java archive - определение. Что такое Java archive
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Java archive - определение

ARCHIVE FILE FORMAT BASED ON THE ZIP FORMAT
Jar-file; Java archives; Jar file; .jar; Java archive; Jar (file format); Jar files; Jar (computer science); JAR file; JAR file format; Jarfile; META-INF; .JAR
Найдено результатов: 757
Java archive         
<file format, filename extension> (jar) A compressed archive file containing Java class files, filename extension: ".jar". The Java Development Kit contains a tool called "jar" for creating .jar files, similar to the standard Unix tar command. As well as archiving and compressing the Java class files, it also inserts a "manifest" file which can contain information about the class files, such as a {digital signature}. Combining class files into a single archive file makes it possible to download them in a single HTTP transaction. This, and the compression, speeds up execution of Java programs delivered via the Internet. (2001}-02-03)
Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
Java is a computer programming language. It is used especially in creating websites. (TRADEMARK)
N-UNCOUNT
Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
<programming, language, portability> (After the Indonesian island, a source of programming fluid) A simple, object-oriented, distributed, interpreted, robust, secure, architecture-neutral, portable, multithreaded, dynamic, buzzword-compliant, general-purpose programming language developed by Sun Microsystems in the early 1990's (initially for set-top television controllers), and released to the public in 1995. Java first became popular by being the earliest portable dynamic client-side content for the World-Wide Web in the form of platform-independent Java "applets". In the late 1990's and into the 2000's it has also become very popular on the server side, where an entire set of APIs defines the J2EE. Java is both a set of public specifications (controlled by Sun Microsystems through the JCP) and a series of implementations of those specifications. Java is syntactially similar to C++ without user-definable operator overloading, (though it does have method overloading), without multiple inheritance, and extensive automatic coercions. It has automatic garbage collection. Java extends C++'s object-oriented facilities with those of Objective C for dynamic method resolution. Whereas programs in C++ and similar languages are compiled and linked to platform-specific binary executables, Java programs are typically compiled to portable architecture-neutral bytecode or ".class" files, which are run using a {Java Virtual Machine}. The JVM is also called an interpreter, though it is more correct to say that it uses {Just-In-Time Compilation} to convert the bytecode into native {machine code}, yielding greater efficiency than most interpreted languages, rivalling C++ for many long-running, non-GUI applications. The run-time system is typically written in POSIX-compliant ANSI C or C++. Some implementations allow Java class files to be translated into native machine code during or after compilation. The Java compiler and linker both enforce {strong type checking} - procedures must be explicitly typed. Java supports the creation of virus-free, tamper-free systems with authentication based on public-key encryption. Java has an extensive library of routines for all kinds of programming tasks, rivalling that of other languages. For example, the "java.net} package supports TCP/IP protocols like HTTP and FTP. Java applications can access objects across the Internet via URLs almost as easily as on the local file system. There are also capabilities for several types of distributed applications. The Java GUI libraries provide portable interfaces. For example, there is an abstract Window class and implementations of it for Unix, Microsoft Windows and the Macintosh. The "java.awt" and "javax.swing" classes can be used either in Web-based "Applets" or in client-side or "desktop" applications. There are also packages for developing XML applications, web services, servlets and other web applications, security, date and time calculations and I/O formatting, database (JDBC), and many others. Java is not directly related to JavaScript despite the name. http://java.sun.com/. Usenet newsgroup: news:comp.lang.java. (2005-01-21)
java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
['d??:v?]
¦ noun N. Amer. informal coffee.
Origin
C19: from the fact that coffee is grown on the island of Java.
Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
·noun Java coffee, a kind of coffee brought from Java.
II. Java ·noun One of the islands of the Malay Archipelago belonging to the Netherlands.
Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
['d??:v?]
¦ noun trademark a computer programming language designed to work across different computer systems.
Java bytecode         
INSTRUCTION SET OF THE JAVA VIRTUAL MACHINE
Java byte-code; Java Bytecode; JVM bytecode; Java byte code; Java assembler
In computing, Java bytecode is the bytecode-structured instruction set of the Java virtual machine (JVM), a virtual machine that enables a computer to run programs written in the Java programming language and several other programming languages, see List of JVM languages.
Dubrovnik Archive         
NATIONAL ARCHIVE IN DUBROVNIK, CROATIA
National Archive in Dubrovnik; Dubrovački arhiv; Dubrovnik State Archive
Dubrovnik Archive or National Archive in Dubrovnik () is the national archive in Dubrovnik, Croatia. It holds materials created by the civil service in the Republic of Ragusa, i.
JDK         
IMPLEMENTATION OF EITHER ONE OF THE JAVA PLATFORM, STANDARD EDITION, JAVA PLATFORM, ENTERPRISE EDITION, OR JAVA PLATFORM, MICRO EDITION PLATFORMS
Java 2 SDK; JDK; J2SDK; Java jdk; Java 2 Software Development Kit; Java SDK; Java Development Toolkit; JDK 1.2
JDK         
IMPLEMENTATION OF EITHER ONE OF THE JAVA PLATFORM, STANDARD EDITION, JAVA PLATFORM, ENTERPRISE EDITION, OR JAVA PLATFORM, MICRO EDITION PLATFORMS
Java 2 SDK; JDK; J2SDK; Java jdk; Java 2 Software Development Kit; Java SDK; Java Development Toolkit; JDK 1.2
Java Development Kit (Reference: Sun, Java)

Википедия

JAR (file format)

A JAR ("Java archive") file is a package file format typically used to aggregate many Java class files and associated metadata and resources (text, images, etc.) into one file for distribution.

JAR files are archive files that include a Java-specific manifest file. They are built on the ZIP format and typically have a .jar file extension.